Welcome to My Blog
This is my first post using Markdown in a Next.js blog powered by Firebase.
🔧 What This Post Covers
- How to write a blog post in Markdown
- Why Markdown is awesome
- How this integrates with your Next.js App Router setup
🚀 Why Use Markdown?
Markdown is simple, readable, and portable. You can write posts like this one without touching any HTML.
Here’s a link to Next.js documentation.
📦 Example Code
You can include code snippets like this:
import { useState } from 'react';
export default function HelloWorld() {
const [count, setCount] = useState(0);
return <button onClick={() => setCount(count + 1)}>Clicked {count} times</button>;
}